home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr26 / netprog.zip / NETPROG.TAR / ipc / mainmsgqserv.c < prev    next >
C/C++ Source or Header  |  1989-12-17  |  352b  |  20 lines

  1. #include    "msgq.h"
  2.  
  3. main()
  4. {
  5.     int    readid, writeid;
  6.  
  7.     /*
  8.      * Create the message queues, if required.
  9.      */
  10.  
  11.     if ( (readid = msgget(MKEY1, PERMS | IPC_CREAT)) < 0)
  12.         err_sys("server: can't get message queue 1");
  13.     if ( (writeid = msgget(MKEY2, PERMS | IPC_CREAT)) < 0)
  14.         err_sys("server: can't get message queue 2");
  15.  
  16.     server(readid, writeid);
  17.  
  18.     exit(0);
  19. }
  20.